home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / intrvews / xgrab.lha / xgrab / include / tedge.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-03-07  |  509 b   |  25 lines

  1. /**
  2.    GRAB Graph Layout and Browser System
  3.  
  4.    Copyright (c) 1989, Tera Computer Company
  5.  **/
  6.  
  7.   /** 
  8.      the one structure shared between C and C++ routines:
  9.      information to uniquely identify an edge
  10.    **/
  11. #ifndef tedge_h
  12. #define tedge_h
  13.  
  14. typedef struct tedge TEDGE;
  15.  
  16. struct tedge
  17. {
  18.    char *tonode;          /* node at the head of the edge */
  19.    char *fromnode;    /* node at the tail of the edge */
  20.    char *label;         /* label for this edge */
  21.    int ord;        /* ordinality (for multigraphs) */
  22. };
  23.  
  24. #endif
  25.